@charset "utf-8";

/*CSS Document
	Author:	Ganxb
 	webSite:	http://www.ganxb2.com/
 	Dtae:		2012-06-27 11:10
*/


/* RESET */
	html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td{
		border:0 none;
		font-size:100%;
		margin:0;
		padding:0;
		vertical-align:baseline;
	}

/* 默认显示右侧滚动条，保证各浏览器不出现闪动兼容BUG */
	html{ overflow-y:scroll; overflow:-moz-scrollbars-vertical;}

/* body字体 */
	body{ font:13px tahoma,arial,'\5B8B\4F53'; text-align:left;}/* '\5B8B\4F53' == '宋体'  font写法字体单引号 */

/* html5 display definitions */
	article, aside, details, figcaption, figure, footer, header, hgroup, nav, section{ display:block;}

/* img 保证被a标签所包含Img不出现蓝色border */
	img{ border:0; -ms-interpolation-mode:bicubic; vertical-align:middle;}

/* links 待完善 a标签虚线 */
	a{ text-decoration:none;}
	a:visited{}
	a:hover{ text-decoration:underline;}
	a:focus{ outline:thin dotted;}
	a:hover, a:active{ outline:0;}

/* 现代浏览器hover事件动画效果 */
	a:hover{ -moz-transition: all 0.5s ease 0s; -webkit-transition:all 0.5s ease 0s;}

/* 鼠标选择背景色 无法过W3C验证，请慎重使用  默认关闭加载 
	::selection{ background:#669900; color:#fff;}
	::-moz-selection{ background:#669900; color:#fff;}
*/

/* lists */
	ul, ol{ list-style:none;}
	li{ list-style-type:none;}

/* forms */
	form{ margin:0; display:block;}
	fieldset{ border:0; margin:0; padding:0;}
	label{ cursor:pointer;}
	button, input, select, textarea{ font:13px/1.5 tahoma,arial,'\5B8B\4F53';}
	textarea{ overflow:auto; vertical-align:top; resize:vertical;}

/* tables 完全用css实现table边框1px 减少html页面代码载入，做到结构与表现分离 */
	table{ border-collapse:collapse; border-spacing:0;}
	td{ vertical-align:top;}

/* clear floats */
	.clearfix:before, .clearfix:after{ content:""; display:table;}
	.clearfix:after{ clear:both;}
	.clearfix{ *zoom:1;}

/* 标题 */
	h1,h2,h3,h4,h5,h6{ font-size:13px; font-family:"Microsoft Yahei";}/* "Microsoft Yahei" == "微软雅黑"  font-family字体写法双引号 */
	/* win7普及，系统默认字体是雅黑，所以标题从用户体验等方面考虑建议是用雅黑来进行弥补宋体的不足 */

/* webkit内核 reset */
input:focus,textarea:focus,select:focus{
	outline-width:0; /* No outline border for Safary&chrome */
	-webkit-text-size-adjust:none; /* 去除谷歌浏览器强制字体最小为12px */
}

/* others */
	/* 字体相关设置 */
	i{ font-style:normal;}
	.fb{ font-weight:bold;}
	/* 定位 */
	.fl{ float:left;}
	.fr{ float:right;}
	.rel{ position:relative;}
	.abs{ position:absolute;}
	.center{ margin:0 auto;}
	.ov{ overflow:hidden;}
	.dn{ display:none;}
	.db{ display:block;}
	.tc{ text-align:center;}
	.tl{ text-align:left;}
	.tr{ text-align:right;}
	/* color */
	.green, a.green{ color:green;}
	.blue{ color:blue;}
	.red{ color:red;}
	.white{ color:white;}
	.black{ color:black;}





